**3.** (Optional) If you run into TypeScript errors importing `aws-exports.js`, you may need to update the `tsconfig.json` file with the following config and add a type declaration file: ```json "compilerOptions": { "allowJs": true, } ``` `aws-exports.d.ts` file: ```ts declare const awsmobile: Record export default awsmobile; ```